Zennolab.CommandCenter
InsertRange(HtmlElement[],Int32) Method
See Also  Example Send Feedback
Zennolab.CommandCenter Namespace > HtmlElementCollection Class > InsertRange Method : InsertRange(HtmlElement[],Int32) Method
elements

Type: Zennolab.CommandCenter.HtmlElement[]

The array whose elements should be inserted into the HtmlElementCollection. The array itself cannot be null.

index
Type: System.Int32
The zero-based index at which the new html element should be inserted.
Inserts the html element of an array into the HtmlElementCollection at the specified index.

Syntax

C# 
public void InsertRange( 
   HtmlElement[] elements,
   int index
)

Parameters

elements

Type: Zennolab.CommandCenter.HtmlElement[]

The array whose elements should be inserted into the HtmlElementCollection. The array itself cannot be null.

index
Type: System.Int32
The zero-based index at which the new html element should be inserted.

Example

The following code example demonstrates the InsertRange method.
C#Copy Code
public static int Execute(Instance instance)
{
    instance.ClearCookie();
 
    Tab tab = instance.MainTab;
    if ((tab.IsVoid) || (tab.IsNull)) return -1;
    if (tab.IsBusy) tab.WaitDownloading();
    tab.Navigate("lessons.zennolab.com");
    if (tab.IsBusy) tab.WaitDownloading();
 
    HtmlElementCollection heCol = tab.FindElementsByTags("input:checkbox");        
    if ((heCol.IsVoid) || (heCol.ErrorDetected)) return -1;
            
    HtmlElementCollection newHeCol = tab.FindElementsByTags("input:radio");
    if ((newHeCol.IsVoid) || (newHeCol.ErrorDetected)) return -1;
            
    heCol.InsertRange(newHeCol.Elements, 0);
            
    return 0;
}
PHPCopy Code
public static function Execute($instance)
{
    $instance->ClearCookie();
 
    $tab = $instance->MainTab;
    if (($tab->IsVoid) || ($tab->IsNull)) return -1;
    if ($tab->IsBusy) $tab->WaitDownloading();
    $tab->Navigate("lessons.zennolab.com");
    if ($tab->IsBusy) $tab->WaitDownloading();
 
    $heCol = $tab->FindElementsByTags("input:checkbox");        
    if (($heCol->IsVoid) || ($heCol->ErrorDetected)) return -1;
            
    $newHeCol = $tab->FindElementsByTags("input:radio");
    if (($newHeCol->IsVoid) || ($newHeCol->ErrorDetected)) return -1;
            
    $heCol->InsertRange($newHeCol->Elements, 0);
            
    return 0;
}

Remarks

If index is equal to Count, the elements are added to the end of HtmlElementCollection. The order of the elements in the collection is preserved in the HtmlElementCollection.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2011 All Rights Reserved.